Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.10 12:36:00 -
[1]
Hi Dragonaire I have been using another API function for retrieving all my corp info and character info.
After have installed this script for testing purpos, I can now allready say that it will make my site mutch faster since it don't need to pulle the XML files each time a page need to be showen and putting it in a database just make it faster and mutch easyer to sort the the content. :)
I will start to implement this into my website now.
One thing I was wondering about. Once you updating an assetlist, will this script delete those info that have been used or sold or related to that ??
Kind Regards Satis |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.10 20:36:00 -
[2]
Originally by: Dragonaire Hi Satis Iqulenax glad you like Yapeal.
Quote: Once you updating an assetlist, will this script delete those info that have been used or sold or related to that ??
No it doesn't try to make any changes to the AssetList or any of the other API data really for that matter. I don't see that being part of the job it's trying to do. Yapeal tries to just take what it gets from the Eve API and put it into the DB in what I hope is a sensible way. To do that and be usable by multiple characters and corporations it does add a few extra columns like ownerID, accountKey, etc to the tables but I never take stuff away I leave that up to you as the application developers to decide what you want to do.
So what you are saying is: If you have an Strip Miner in your posession and Yapeal is catching it and addind that on to the database, then if you sell the strip miner so it's not in your possession anymore, Yapeal just ignor this and let that item stay in the database ??
If it does that, you will constantly adding items to the database and never clean up those items that an user don't have in hes/hers posession anymore and can still be showen on the webpage forever. This will allso overfloat the DB with data it does not need.
Look at it in my way. If I as a webdeveloper need to check those tables for expired items I would need to do somthing simular as you do. Catch the XML and check to see if this item is stille there. that will only make you need to get the XML file 2 times. one to add old new data as Yapeal and then one to delete the old data. since Yapeal don't do this at the same time.
One solution that I can think of is when the backend is doing it's work, then for each character or corp, it should delete all the data from that character or corp and then insert the new data. that should not take anylonger that the methode you are doing now.
Hope you understand what I'm saying. I'm just a littel confused by this data dump 
Kind Regards Satis
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.11 00:22:00 -
[3]
Originally by: Dragonaire You need to read the full post. But the way I worded it could be misunderstood so I'll try to rephrase it to be more clear. For all the APIs under eve, and server, they will have all their records truncated and then replaced by the new data pulled from the API. In tables like AssetList all records on a per ownerID basis well be deleted and replaced with the new data from API. For tables like WalletJournal, WalletTransactions, etc because of their nature they will just be added to. In MarketOrders and IndustryJobs they will be update by the new data until it stops changing then they do the same as WalletJournal, etc and keep a record of the last update received. This let's you look up old records if you want something that you can't do in game. Here an example for a market order. You make a sell order for some ammo as people buy it from you the record is update with the amount left to sell in volRemaining. Now the API may return a record where orderState=2 meaning it has either expired or someone bought it all up before it ran out. You'll have to check if volRemaining=0 to tell if it was bought out. We will continue to receive it in more updates from the API for a while because of how the API cache works but since our order doesn't change anymore it's basically ignored at this point. just like updates to unchanging records for WalletJournal would be. The record for your order will stay around until you decide to delete it.
Hopeful this makes it more clear to you how Yapeal does things.
Yes it did. I allso did read the full post of yours and I did misunderstand it 
But now that this is cleared I feal happy since it's working as I was hoping it would 
New Question: From: http://games.chruker.dk/eve_online/test_eve_api.php there is an list of all the API data you can collect. Are you planing to implement all of them ??
Kind Regards Satis
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.11 01:31:00 -
[4]
Edited by: Satis Iqulenax on 12/01/2009 03:23:14 Edited by: Satis Iqulenax on 11/01/2009 18:24:06 Edited by: Satis Iqulenax on 11/01/2009 18:22:59 Edited by: Satis Iqulenax on 11/01/2009 18:21:42
Originally by: Dragonaire Glad to hear I was clearer on my second try. 
At some point I would like to see Yapeal do all the APIs and I plan on making some changes to how the code works so it's easier then it is now to add more APIs. I'm hoping to get it easy enough that I'm not the only one that can seems to understand it well enough to add more 
Thanks for the answer 
I might take a more direct look into your coding style and if I can get the system in your coding (They are more advanced than I'm used to) I might be giving a helping hand and help you write some of the API functions you have not worken on yet.
I think I found a place where you have been writing about what have been done so far but can't remember where that one is ...... need to search more 
Well it's time for me to say good night. it's 2.30 in the morning where I live, and realy need some sleep since I have been fitling with my DB the whole day, implementing the EVE DB Dump to pull out usefull information to my site ^^
Night Night and happy coding 
//Satis |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.12 03:24:00 -
[5]
I found a bug that I think is a critical one: The bug have been mentioned 1 or more times in this forum, but I have naroed it further down. If try updating the tables with eve-api-pull.php less than 24 houers it will not update all the tables. I can narow it down to say that if you have an Cronjob running each 1 min or by manualy updating it each minut it checks the `CachedUntil` if there is some XML that need to be updated. If there is one or more of them that do not need to be updated, it will still Update the `CachedUntil` on those but it changes the date to be updated about 2-5 min later. But if you runs a cronjob each 1 min it will never update since it allways setup the `CachedUntil` for 2-5 min later and when it's runned each time it will not update the tables anymore but only move the update time 2-5 min later. if there was a table that needed to be updated in22 hours it would just change it so it would be updated in 2-5 min again, but still it will not update it, since the `CachedUntil` is set to 2-5 min later.
i think the solution to this is a simple function that tells the eve-api-pull.php that it should not update `CachedUntil` tables that was not expired and don't need to be updated with a 2-5 min delay.
Hope this makes sence 
//Satis |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.12 19:55:00 -
[6]
Edited by: Satis Iqulenax on 12/01/2009 20:04:14
Originally by: Dragonaire And a big thanks out to Satis Iqulenax for catching this 
Glad to be of help 
Now since you have updated it, I have rebuilded the Yapeal from the revision 445 it works like a charm  Now that I look in my tables in phpmyadmin I can see that there have been added a new table caled "test" That one holds the same info as the RegisteredUser table.
May i ask what the reaon is for the test table and will it update so it holds the same info in the RegisteredUser if you update RegisteredUser with a new API Key or add a new User to RegisteredUser ??
EDIT: Oh I forgot to ask if you can make a rar file with all the files for each new revision ?? I can't use the bin file since I'm running Vista and I have to manualy download each file from the SVN.
//Satis
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.13 22:39:00 -
[7]
Dragonaire I have an question to the AssetList table.
I notised that there it a rowname caled: "lft" and "rgt"
When I looked in the XML AssetList they was not mentioned in there. Has that somthing to do with the Child of a container or the fitting on a ship ??
If so... can you give a little explanation on how those numbers are working together.
Kind Regards Satis
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.13 22:58:00 -
[8]
Originally by: Buzz AU Hi Dragonaire,
I have tried downloading this, but have been unsuccessful. I cant find a way of extracting the .bin file, and using Tourtise to connect to SVN asks me to authenticate.
How dows someone use this?
First of, the http://yapeal.googlecode.com/svn/trunk is Read Only, so I think you have used a wrong command to get the content. I think you might try to upload to the SVN and not downloading it.
I made a step by step tutorial for you to try out :)
Tutorial for TourtiseSVN
- Create a folder where Yapeal should be placed.
- Right click on the folder and chose: SVN Checkout
- In the Url you input: http://yapeal.googlecode.com/svn/trunk
- Now press the OK button and it should get the latest version of Yapeal.
- Now each time you wan't to update to the latest version just right click the folder and chose: SVN Update and it will automatic update to the latest one.
Hope this helps :)
Kind Regards Satis |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.14 17:07:00 -
[9]
Dragonaire did you read this ??
Originally by: Satis Iqulenax Dragonaire I have an question to the AssetList table.
I notised that there it a rowname caled: "lft" and "rgt"
When I looked in the XML AssetList they was not mentioned in there. Has that somthing to do with the Child of a container or the fitting on a ship ??
If so... can you give a little explanation on how those numbers are working together.
Kind Regards Satis
Waiting for an answer 
Kind Regards Satis
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.14 19:12:00 -
[10]
Edited by: Satis Iqulenax on 14/01/2009 19:15:05
Originally by: Dragonaire Edited by: Dragonaire on 14/01/2009 18:11:23 Sorry I did miss you asking that. Here a pages with some links I found interesting when deciding how to implement it. Johnathan Roark there actually developed the test code I adapted to Yapeal to replaced what I had been using before which was extremely slow. The library I was using before took up to 20 minutes to add 2000 records where now it's done in a few seconds 
Also might want to look back around post 30 on this thread where someone else was asking about them and I made a few comments to help get them started.
Cool. I'll look into this :) BTW: I was lacy not have searched in this post for this 
anyway, if there is somthing I can help you with, please tell :)
EDIT:
Originally by: Johnathan Roark Its to persevere the tree format using the "nested set" module. MYSQL Tree Treversal
Thanks to you too allmost missed your post 
//Satis |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.15 16:26:00 -
[11]
Originally by: Buzz AU Edited by: Buzz AU on 15/01/2009 12:48:40 Looks like I closed chrome before I posted my last message:
Thanks for the instructions on Tortoise, it worked well!!
Are there new instructions on how to get this up and running?
The ones on the main google code site, dont really answer much.
Where do I enter the details for my database? Where do I enter my API information? I checked the yapeal.ini but dont see anything related to the above the the SQL db, and also cant find where I activate which API info I want to pull.
If there is a post on this, please can you point me to it.
Thanks
Well in the: Getting Started on googlecode there is a description on how and where to indput the API Key's. But you need to make a script to get the character ID from inside eve to pulle out the character ID. you need the character ID and a corp ID if you wan't to setup corp pull allso.
In the : Key Files on googlecode there is a list of the files that would interest you in the setup.
I have planed to make a Install.php file that Dragoniere can deside if he would use in hes build for a easy setup for the Yapeal. it will be a file that need to be runned inside eve onlige IGB (Ingame Browser) since it easyer to get the character ID, Corp ID and more that way.
That install file will allso create the yapeal.ini that is needed for the database.
I could make a long post on how to setup yapeal to rune on your site but rather not since I am planing on making this install.php file for all to use.
Kind regards Satis.
PS. in the wait time, try to read the wiki one more time and see if you can figure out how to setup Yapeal :)
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.15 19:37:00 -
[12]
Originally by: Dragonaire First I'd like to thank Satis Iqulenax for offering to help with some of the document fixes and additions she's working on. I'd also like to thank her for taking on making some kind of installer to make it easier for people to try out Yapeal.
OH Thanks again 
Dragonaire I have some small matters I like to disguss with you. Is there another way to contact you beside this forum or Ingame ??
Kind regards Satis |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.15 21:47:00 -
[13]
Originally by: Dragonaire Edited by: Dragonaire on 15/01/2009 20:48:03 Best way would be through my E-mail either from the project files or the one at Google. I'm also usually on Gchat. I use an alt's name for them just look at the Yapeal project owner to figure it out. Using eve-mail is a slow way to get hold of me. I'm usually only on to skip skills for my characters once in a while instead of playing Eve I spend most of my free time working on Yapeal 
Hehe okay :) is Gchat somthing you pay for, because I can only find one on the net that cost alot. did find an webbased Gchats but I'm not sure if that's the right one, since when I logged in, the place was empty.
well never mind that.
I might just send you an email. 
//satis
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.17 01:33:00 -
[14]
Oh I didn't know that some one was making an installer as well
Well can say that the one I'm doing right now is in first priority based on the IGB and you can not load it offgame since there is checkers that cheks if you are insite eve and if not, tells them that the installer can only be reached from the ingame.
However, I have planed to implement the outgame suport as well but I just want the IGB to work first.
Why I'm doing the IGB first is that it's the fastest and easyest way to get the character ID and name as well as the Corp ID and name. With a trustet site request you can get those variables without having to fitling around the api and cache the character and charactersheet XML to pull those information out.
Anyway, the progress with the installer is allmost done since alle the check for compability on the webhost have been done as well as folders and file write premission. the only part is missing is the fun part where I create the database and the yapeal.ini file. A beta will be done within 24 hours I think.
Just keep in mind that the outgame browser is planed, but first when the IGB part is done since the outgame browser takes a little more time to implement. I'm a little rusty on the API part so I need to refresh that, for the outgame support 
Dragonaire I have removed the Debugging function as you mentioned in the email. I has as well removed the Database-server part since it will be implementet as a standard activ=TRUE as well with the Util DB.
1 question thou. all the comments that are in the yapeal.ini-example would you like to have those implemented as well or is it okay with an raw ini file without the descriptions ?
Kind regards Satis
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.18 14:58:00 -
[15]
A little update on the Yapeal Installer.
I might just skip the IGB installer and just have the normal browser installer, since I found a smart way to get the characterlist in JavaScript so gettimg the info on a character just depends on what PAI setup you make.
I'll make this so if you try to open this site in the IGB it will just give you a link that will pop out of EVE and open the Yapeal Installer in a normal browser. Thai way I don't have to make my script 2 times, one with javascript support and one without since IGB does not support JavaScript.
Status:
- the grafical UI is done
- The requirement test is done
- The basic cofiguration input site is done. There will be more advanced setups like chosing different databases to each setup groups
- Working on database creation right now.
I think that's that for now.
//Satis |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.24 20:07:00 -
[16]
Okay people.
After working together Dragonaire I have made an Basic Yapeal Installer.
It out now together with an version of yapeal that should be stabel.
the installer is working with both JavaScript enabled and disabled but the one with most install steps will be the one with no JS active.
This will make it easyer for people to setup Yapeal and will be able to run it without having problem with manual setup.
In the future there will be a more advanced installer that will be able to handle setup of multi databases as well as setup table prefixes so you don't mis tables together. There will allso be the option to input a password from the installer after Yapeal have been setup so you can edit your setup without having to remove the yapeal.ini config file.
To download yapeal in the most easy way is to grab it from the SVN.
For you who don't know how to do that, here is a little tutorial on doing so in windows.
- Download Tortoisesvn
- Install Tortoisesvn
- Create a folder where Yapeal should be placed.
- Right click on the folder and chose: SVN Checkout
- In the Url you input: http://yapeal.googlecode.com/svn/trunk
- Now press the OK button and it should get the latest version of Yapeal.
- Now each time you want to update to the latest version just right click the folder and chose: SVN Update and it will automatic update to the latest one.
I think that's all.
Kind Regards Satis Iqulenax Yapeal Member
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.25 19:34:00 -
[17]
Originally by: Buzz AU Is that to say, we shouldn't run it using a normal cron job?
Yes you can run it as a cronjob and it is ment to be runned as a cronjob or on windows server a schedul task.
What Dragonair men't is that you should not run eve-api-pull.php from a webbrowser. That's why there was put an .htaccess file in that directory :)
//Satis
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.25 22:41:00 -
[18]
Edited by: Satis Iqulenax on 25/01/2009 22:41:40 Okay I have just made 3 guids in the Yapeal Wiki.
- Setup a webserver on windows using Wampserver
- Install Yapeal on your windows webserver
- Guide to setup task scheduler for Yapeal in windows (Like cronjob)
Hope they will be of some use for those who want to testout Yapeal on there own Windows PC
//Satis |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.01.26 18:51:00 -
[19]
Originally by: Buzz AU In that case, change the final step in the installer, to not say "now you can go to /backend/.."
Both the welcome page and the end page should now be updated and can be updated from the trunk now :)
|

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.02.06 02:00:00 -
[20]
Originally by: Cryten Jones Could anyone tell me what the lft and rgt column in the assets table are? I can't see them anywhere on the api documentation!
Also, how does yapeal deal with the Item X is inside Item Y? The xml provides a 'contents' value but as far as I can see yapeal just sets assets locationID to the same as their containers..is this right?
Thanks
-CJ
Hi CJ.
the 2 question you made is actually related to each other. the lft and rgt is hierarchical data and is a more advanced method to get what's inside a container or what a ship is fitted with or what is in a station.
to find out more about this, read in the Yapeal wiki in this section: hierarchical data Read and use the links in there and your question will be answered :)
Kind Regards Satis Iqulenaz Member of Yapeal Project: Installer/Setup |

Satis Iqulenax
Amarr Hybris Pride
|
Posted - 2009.02.06 14:12:00 -
[21]
Originally by: Dragonaire Something that might give everybody a better understand of some of the power that nested sets gives you here's some examples.
I just took the opportunity to take your small guide Dragonaire and paste it in the wiki on Yapeal Wiki.
The link is here: Small and simple nested sets guide
Kind Regards Satis ---- Yapeal Developer Member Yapeal Setup Creater |

Satis Iqulenax
Amarr Free Imperial Vikings
|
Posted - 2009.04.20 15:53:00 -
[22]
Originally by: Selene D'Celeste Following the steps here: http://code.google.com/p/yapeal/wiki/InsYapWinSer
I get to "setup.php?install=step3" of the Yapeal setup and the apache server crashes.
Problem signature: Problem Event Name:APPCRASH Application Name:httpd.exe Application Version:2.2.11.0 Application Timestamp:493f5d44 Fault Module Name:php5ts.dll Fault Module Version:5.2.9.9
I can't find any more information on what could be configured wrong to cause this. Ideas?
In the cache/log folder where you have installed yapeal, you should have a setup log. with the date and time from where you started to use the setup.php.
Please check where it stops.
Kind Regards Satis install dev ---- Yapeal Developer Member Yapeal Setup Creater |

Satis Iqulenax
Amarr Free Imperial Vikings
|
Posted - 2009.04.20 19:10:00 -
[23]
Okay NM my last post.
We have just released our new release. There is nothing new in the API of Yapeal but the setup it totally rewritten.
It's the 2. generation of the yapeal setup and right now, there is no manual install, so you have to use the setup.php from the install folder.
The character selection is not needed anymore and will not be shown in the first time setup, but first after yapeal is setup and running from your web host. The reason for this is that the character select and api registration is ONLY meant to be used as a test to test yapeal. When implementing into your system, do not use the test character section.
Another new thing that is added is that the setup now works together with yapeal error handler and there is now 3 new files in cache/log folder where all the new error/warning/notice logs will be added if there is one in the setup and it will be easier for us to find the error if you get one.
The backwards compatibility only goes back to last release so if you are using an older version than the last one, then you will need to start with a clean install.
Kind Regards Satis ---- Yapeal Developer Member Yapeal Setup Creater |

Satis Iqulenax
Amarr Free Imperial Vikings
|
Posted - 2009.05.02 05:27:00 -
[24]
Okay after having a look over in the code (and fixed some tiny bugs Dragonaire made :P) I found some small bugs that should be fixed now.
Try grab it from the trunk again and see if you still get the same errors
Kind Regards Satis ---- Yapeal Developer Member Yapeal Setup Creater |

Satis Iqulenax
Amarr Free Imperial Vikings
|
Posted - 2009.05.08 10:51:00 -
[25]
Originally by: Meissa Anunthiel Hi Dragonaire,
Your early comments refer to a yapeal.sql file that doesn't exist [anymore?].
Followed your InsYapWinserver documentation to install, everything is fine, works flawlessly until you reach the "Character Select and API Pull Select".
There's no such thing. :-)
Okay first of :P InsYapWinserver documentation is something I wrote and sorry for not updating it to the new version of yapeal that we have released. I'll go fix that now. The character select have been removed from the first time setup, since it's not really needed in a website where yapeal is implemented in. However if you are still just trying Yapeal out, then just run the setup.php again and then there is 3 menu now, where you can change database info, change Yapeal api handler and test character witch is the one you were looking fore ;)
about the yapeal.sql file, then if you have read one of my previous posts, then we have removed all sql files and manual setup is not possible now, Dragonaire might make a CLI installer, but that's that. We have changed from sql files over to use a axmls schema xml file to create the tables, since it's easier for us to maintain.
I'm guessing you found that info in a old dock :)
Kind Regards Satis ---- Yapeal Developer Member Yapeal Setup Creater |

Satis Iqulenax
Amarr Free Imperial Vikings
|
Posted - 2009.05.09 01:23:00 -
[26]
Originally by: Bonechewer Hey guys...
Ive got a bit of a problem with the SVN ive downloaded. The password field is not provided during the setup. So when i get to http://192.168.1.56/yapeal/install/setup.php?funk=configini ... no matter what i try, it doesnt work.
Any ideas ?
It should be on the yapeal.ini Setup page in the bottom. it's the page right after the tables have been created. Else check the cache/log folder and see if the setup_error.log, setup_notice.log or setup_warning.log have some info in it, since we need some more info on it.
Kind Regards Satis
---- Yapeal Developer Member Yapeal Setup Creater |

Satis Iqulenax
Amarr Free Imperial Vikings
|
Posted - 2009.05.14 21:54:00 -
[27]
Originally by: Matrix Lady Edited by: Matrix Lady on 14/05/2009 20:49:04 know THAT BECOME embarrassing to ask but I am a new to all this I want to make a small start to use this api library and i now my next question is stupid but I do not know where to begin.. so any help with this start on me i would appreciate it very much Let's say I have a .html page Blank and i need to see what characters i have in my account,so i have the id and api key after? Let's say I have one 2 textboxs one for id and one for api key, what code i need to pull out the data from yapeal and show in my blank web page after that explain i now where i start thank you.
Well you need to add some php code to get it to work. the first page you make the form and on the other page you use php codes to insert the data to the database in utilRegisteredUsers, utilRegisteredCharacter and utilRegisteredCorporations.
You might want to look at my code I use for the test character section. goto install/inc/config in your yapeal dir and then have a look at configapi.php, char_select.php and goapi.php this files holds the code I used to create a test character and it should be easy to convert them over for your own needs :)
Hops this helps.
Kind Regards Satis ---- Yapeal Developer Member Yapeal Setup Creater |

Satis Iqulenax
Amarr Free Imperial Vikings
|
Posted - 2009.05.17 14:04:00 -
[28]
Originally by: Matrix Lady i have a small problem i try everything but nothing.. i make install on my mac zend studio and zend server all is ok with this i make install yapeal all ok until login screen.. when i put my pass or no pass or everything i try say login fail. php.ini is ok i take like this errors
/usr/local/zend/apache2/htdocs/testdb/install/inc/config/login.php on line 52 [17-May-2009 02:20:43] PHP Notice: Undefined index: password in /usr/local/zend/apache2/htdocs/testdb/install/inc/config/login.php on line 39 [17-May-2009 02:20:43] PHP Notice: Undefined index: yapealsetup in /usr/local/zend/apache2/htdocs/testdb/install/inc/config/login.php on line 40 [17-May-2009 02:20:43] PHP Notice: Undefined index: password in /usr/local/zend/apache2/htdocs/testdb/install/inc/config/login.php on line 52 any help on this thx..
okay first off. I have fixed those notifications that you got. so new release in the trunk.
Second be sure that you have cookie turned on or else it wont work. another thing to check is in the database. go into utilConfig and see if there is a row with Name: password if it has that, check if it's empty. the password field may not be empty at all, not even if you have added a blank password, since it still convert the blank password into a hash string.
Another thing dragonaire and I talked about, might be that you are running it on a mac + on a zend studio since we don't know if that can run it properly, but we might be wrong about that.
Try it out and please give us a hint if it's working.
Kind Regards Satis ---- Yapeal Developer Member Yapeal Setup Creater |

Satis Iqulenax
Amarr Free Imperial Vikings
|
Posted - 2009.06.06 03:39:00 -
[29]
Originally by: lillitheve ok, well been trying that, the setup went beautifully, as far as I can tell, have lots of tables, but no data in them. I am using godaddy hosting for my webserver.. It appears that the php5 is being run through the cgi not a true command line, so the cron job outputs this:
Quote:
/web/cgi-bin/php5: Symbol `client_errors' has different size in shared object, consider re-linking Content-type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http:www.w3.org/TR/xhtml1" xml:lang="en" lang="en"> <head> <title>Yapeal is not a web application</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </head> <body> <h1 style="font-size: xx-large;color: #ff1010;">USER ERROR USER ERROR USER ERROR</h1> <p> If you are seeing this you have tried to run Yapeal as a web page which is incorrect. Yapeal is made to <b>ONLY</b> ran from the command line. See the <a href="http://code.google.com/p/yapeal/w/list">Yapeal Wiki</a> for more information on using it. </p> </body> </html>
There is a way to use yapeal with that conjob you have, but you will need to disable that error test. This how you do it: open yapeal.php in a text editor and goto around line 85. there you will see an function triggered with the name: notAWebPage(); just add 2 / in front of it to disable that check, like this: //notAWebPage(); Now you can run it in a web browser as well.
I uses this hack on yapeal in the project EMPA that Dragonrun, stephen12, wengole and I are doing right now. I had to make that hack, since my web host also don't have a real CLI cronjob.
Hope this helps ;)
|
|
|